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-re